home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 001-025 / disk_014 / amiga3d / camera.c < prev    next >
C/C++ Source or Header  |  1992-05-06  |  544b  |  42 lines

  1. #include <exec/types.h>
  2. #include <exec/memory.h>
  3. #include "threed.h"
  4.  
  5. extern struct Object Camera1;
  6. extern struct UV camera1matrix;
  7. extern struct Coordinate camera1position;
  8.  
  9. extern int camera1procedure();
  10.  
  11. struct Object Camera1 =
  12. {
  13.     NULL,
  14.     NULL,
  15.     &camera1matrix,
  16.     &camera1position,
  17.     0,NULL,
  18.     0,NULL,
  19.     0,NULL,
  20.     NULL
  21. };
  22.  
  23. struct UV camera1matrix =
  24. {
  25.     0x4000,
  26.     0x0000,
  27.     0x0000,
  28.     0x0000,
  29.     0x4000,
  30.     0x0000,
  31.     0x0000,
  32.     0x0000,
  33.     0x4000
  34. };
  35.  
  36. struct Coordinate camera1position =
  37. {
  38.     0,
  39.     0,
  40.     0
  41. };
  42.